home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr13 / aurora2c.zip / HELPUSER.AML < prev    next >
Text File  |  1995-04-07  |  3KB  |  101 lines

  1.  
  2. // ───────────────────────────────────────────────────────────────────
  3. // The Aurora Editor v2.0
  4. // Copyright 1993-1995 nuText Systems. All Rights Reserved Worldwide.
  5. //
  6. // User's Guide Topics Menu
  7. //
  8. // This macro displays a popup menu of User's Guide topics. Selecting
  9. // a topic will display the User's Guide and position to cursor to the
  10. // selected topic.
  11. // ───────────────────────────────────────────────────────────────────
  12.  
  13.   // compile time macros and function definitions
  14.   include bootpath "define.aml"
  15.  
  16.   // create an inline help topics buffer
  17.   databuf "helpuser"
  18.     "Bookmarks"
  19.     "Border Options"
  20.     "Character Sets"
  21.     "Clipboard"
  22.     "Colors"
  23.     "Command Line Options"
  24.     "Configuration"
  25.     "Confirmation Options"
  26.     "Creating and Loading Files"
  27.     "Cursor Commands"
  28.     "Default File Extensions"
  29.     "Desktop Options"
  30.     "Editing Options"
  31.     "File Commands"
  32.     "File Manager Commands"
  33.     "File Manager Options"
  34.     "File Manager Sorting"
  35.     "File Manager"
  36.     "File Name Completion"
  37.     "Folds"
  38.     "Getting Started"
  39.     "Global Settings"
  40.     "Installation"
  41.     "Key Definitions"
  42.     "Key Macros"
  43.     "Macro Commands"
  44.     "Marking Blocks"
  45.     "Marking Files"
  46.     "Menu Definitions"
  47.     "Menus"
  48.     "Modifying Text"
  49.     "Mouse Definitions"
  50.     "Mouse Options"
  51.     "Multi-Key Definitions"
  52.     "Open Options"
  53.     "OS Shell Commands"
  54.     "Panning the Screen"
  55.     "Performance Tips"
  56.     "Print Options"
  57.     "Printing"
  58.     "Prompt History"
  59.     "Prompts"
  60.     "Regular Expression Searching"
  61.     "Save Options"
  62.     "Saving and Discarding Files"
  63.     "Scrolling"
  64.     "Search and Replace"
  65.     "Status Line"
  66.     "Syntax Highlighting"
  67.     "System Options"
  68.     "System Requirements"
  69.     "Tool Bar"
  70.     "Translation Options"
  71.     "Translation"
  72.     "Undo and Redo"
  73.     "Video Modes"
  74.     "Video Options"
  75.     "Window Options"
  76.     "Window Settings"
  77.     "Window Styles"
  78.     "Windows"
  79.     "Word Processing Options"
  80.   end
  81.  
  82.   // name the buffer so the menu position can be remembered
  83.   setbufname "helpuser"
  84.  
  85.   // display the buffer in a popup menu and get the topic selected
  86.   topic = popup (getcurrbuf) "User's Guide Topics" 29
  87.  
  88.   // destroy the help topics buffer
  89.   destroybuf
  90.  
  91.   // display the selected topic
  92.   if topic then
  93.     open (getbootpath + "DOC\\" +
  94.             (if? topic [1:3] == "Reg" "REGEXP" "USER") + ".DOX")
  95.     gotopos 1 1
  96.     if find topic + '' then
  97.       send "onfound" (sizeof topic)
  98.     end
  99.   end
  100.  
  101.